home *** CD-ROM | disk | FTP | other *** search
/ PD Collection CD 1 / PD Collection CD 1.iso / textual / pdimpres / !PD-Impres / !Help < prev    next >
Text File  |  1990-08-25  |  2KB  |  65 lines

  1. /*
  2.  * !PD_Impres
  3.  *
  4.  * © Stuart Hickinbottom 1990
  5.  */
  6.  
  7.      This utility was written to allow data to be
  8. transferred from Colton Software's PipeDream to
  9. Computer Concepts' Impression. It does this by
  10. converting the PipeDream highlight codes (eg. %H1%
  11. meaning bold) into Impression DDF (Document
  12. Description File) format codes (eg {"Bold" On} for
  13. bold).
  14.  
  15.      To use the utility double-click on the
  16. !PD-Impres icon in a filer window. Soon a similar
  17. icon will appear on the icon bar. This icon has a
  18. menu containing a standard information window and a
  19. quit option to remove the utility.
  20.  
  21.      To convert a PipeDream file simply drop it onto
  22. this icon, a short time later a standard export
  23. window will appear, allowing the DDF version to be
  24. saved into another filer window, or directly into an
  25. Impression frame.
  26.  
  27.      Because of the way in which PipeDream formats
  28. paragraphs (it actually inserts a line-feed at the
  29. end of each line) the line-breaks must be editied
  30. out once the file has been inserted into a frame -
  31. but this is a small price to pay for the time saved
  32. by highlights being converted.
  33.  
  34.  
  35. /* Revision History */
  36.  
  37. 0.10 First version released mainly to find bugs.
  38. 0.11 BUG FIX on RAM xfer. If the sending does not
  39.      work, then a file xfer should be attempted.
  40.      Used to complain, but this is now the case.
  41.      This was spotted from what I think is a bug in
  42.      PipeDream - it tells you it can send via RAM,
  43.      but then does not send anything! I was
  44.      developing with Edit - so I never noticed this
  45.      as Edit works fine.
  46. 0.12 BUG FIX. Only accepted \x0a for EOLN (which is
  47.      the case in PipeDream on the Arc). Would fail
  48.      in a number of ways if terminator used was
  49.      \x0d (which it is on Z88 PipeDream).
  50. 0.13 BUG FIX (RAM xfer). Was not extending the
  51.      buffer when it should. Caused several obscure
  52.      signals. Xfer should now be bug free under ALL
  53.      circumstances(!) - just noticed still getting
  54.      signal 3 (SIGILL) - must look into it...
  55.  
  56. /* Future enhancements */
  57.  
  58. * Implement RAM xfer from the !PD-Impress -
  59.   currently only does this via scrap file protocol.
  60.  
  61. * When using scrap protocol, alter name from
  62.   <Wimp$Scrap> in export box.
  63.  
  64. Stuart
  65.